home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / fnordadl / fn132src.zoo / cith / archiver.h next >
Encoding:
C/C++ Source or Header  |  1991-09-02  |  544 b   |  34 lines

  1. /*
  2.  * archiver.h -- structures for managing generalised ARC program handling
  3.  *
  4.  * 91Apr29 AA    Moved in former arc68k.h
  5.  * 91Jan24 AA    Created.
  6.  */
  7.  
  8. #ifndef _ARCHIVER_H
  9. #define _ARCHIVER_H
  10.  
  11. #include "door.h"    /* for DOORSIZE */
  12.  
  13. struct archiver {
  14.     char extension[4];
  15.     char doorname[DOORSIZE];
  16.     struct doorway *doorptr;
  17. } ;
  18.  
  19. extern struct archiver *archTab;
  20.  
  21. #define ARCMAGIC    26
  22. #define ARCVERSION    9
  23. #define AFLEN        13
  24.  
  25. struct arcH {
  26.     char  a_name[AFLEN];
  27.     long  a_size;
  28.     long  a_timestamp;
  29.     short a_crc;
  30.     long  a_length;
  31. } ;
  32.  
  33. #endif
  34.